/* CSS Master Settings */
.fj-full-scope {
    background: #080808;
    color: #fff;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.fj-full-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Heading System */
.fj-full-heading {
    position: relative;
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 30px;
    padding-bottom: 12px;
    display: inline-block;
}

.fj-full-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 5px;
    background: #ffcc00;
}

.fj-full-heading span {
    color: #ffcc00;
}

.fj-full-center {
    text-align: center;
    margin-bottom: 50px;
}

.fj-full-center .fj-full-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Hero */
.fj-full-hero {
    padding: clamp(100px, 15vh, 180px) 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('') center/cover;
}

.fj-full-tag {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

.fj-full-h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    margin: 15px 0;
    line-height: 1.1;
}

.fj-full-hero-p {
    color: #ccc;
    max-width: 650px;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Buttons */
.fj-full-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.fj-full-btn-y {
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}

.fj-full-btn-w {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
}

/* Split Section */
.fj-full-section {
    padding: 80px 0;
}

.fj-full-bg-dark {
    background: #030303;
}

.fj-full-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.fj-full-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.fj-full-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #ffcc00;
    font-size: 0.95rem;
}

.fj-full-img-box img {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #333;
}

/* Product Cards */
.fj-full-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.fj-full-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    transition: 0.3s;
    text-align: center;
}

.fj-full-card:hover {
    transform: translateY(-10px);
    border-color: #ffcc00;
}

.fj-full-card-img {
    height: 200px;
    /* border-bottom: 4px solid #ffcc00; */
    overflow: hidden;
}

.fj-full-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fj-full-card-body {
    padding: 30px;
}

.fj-full-card-body i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 15px;
    display: block;
}

/* Lists */
.fj-full-dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.fj-full-list-card {
    background: #111;
    padding: 40px;
    border-radius: 15px;
}

.fj-full-border-y {
    border: 1px solid #ffcc00;
}

.fj-full-ul {
    list-style: none;
    padding: 0;
}

.fj-full-ul li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.fj-full-ul i {
    color: #ffcc00;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {

    .fj-full-split,
    .fj-full-dual-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fj-full-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .fj-full-hero {
        text-align: center;
    }

    .fj-full-hero-p,
    .fj-full-btns {
        margin-left: auto;
        margin-right: auto;
        justify-content: center;
    }

    .fj-full-features-grid {
        justify-items: center;
    }

    .fj-full-ul li {
        justify-content: center;
    }

    .fj-full-img-box {
        order: -1;
    }
}

@media (max-width: 576px) {
    .fj-full-features-grid {
        grid-template-columns: 1fr;
    }

    .fj-full-btn-y,
    .fj-full-btn-w {
        width: 100%;
    }

    .fj-full-section {
        padding: 50px 0;
    }
}